home *** CD-ROM | disk | FTP | other *** search
/ Nebula 2 / Nebula Two.iso / SourceCode / MiscKit1.7.1 / MiscKit / Headers / misckit / MiscAbstraction.h < prev    next >
Encoding:
Text File  |  1995-02-04  |  879 b   |  36 lines

  1. //
  2. //    MiscAbstraction.h -- A root object for classes without instances. 
  3. //        Written by Michael T. H. Scott Copyright 1995 by Michael T. H. Scott.
  4. //                Version 1.  All rights reserved.
  5. //
  6. //        This notice may not be removed from this source code.
  7. //
  8. //    This object is included in the MiscKit by permission from the author
  9. //    and its use is governed by the MiscKit license, found in the file
  10. //    "License.rtf" in the MiscKit distribution.  Please refer to that file
  11. //    for a list of all applicable permissions and restrictions.
  12. //    
  13.  
  14. #import <objc/objc.h>
  15. #import <objc/objc-class.h>
  16.  
  17. @class Protocol;
  18.  
  19. @interface MiscAbstraction
  20.  
  21. + initialize;
  22. + (const char *)name;
  23. + class;
  24. + superclass;
  25. + (BOOL)conformsTo: (Protocol *)aProtocol;
  26. + poseAs: aClassObject;
  27.  
  28. @end
  29.  
  30. @interface MiscAbstraction ( DynamicLoading )
  31.  
  32. + finishLoading: (struct mach_header *)header;
  33. + startUnloading;
  34.  
  35. @end
  36.